home *** CD-ROM | disk | FTP | other *** search
/ Gekikoh Dennoh Club 5 / Gekikoh Dennoh Club Vol. 5 (Japan).7z / Gekikoh Dennoh Club Vol. 5 (Japan) (Track 01).bin / internet / webx / webxp040.lzh / Source / makefile < prev    next >
Makefile  |  1998-09-27  |  2KB  |  59 lines

  1. #    makefile for WebXpression.x
  2.  
  3. CC    = gcc
  4. #CC    = 060loadhigh gcc
  5. #CFLAGS    =
  6. CFLAGS    = -O -fomit-frame-pointer -fstrength-reduce
  7. AS    = has
  8. LD    = hlk
  9. INC    =
  10. LIBS    = libc.a libgnu.a libdos.a libiocs.a libnetwork.a libether.a
  11. LZH    = WebXp040
  12.  
  13. %.o:    %.c
  14.     $(CC) $(CFLAGS) -c $<
  15.  
  16. vpath    %.c    ./;FuncUrl/;WebCache/;GetFile/;
  17. # .c âtâ@âCâïé═âJâîâôâgûöé═é▒é▒é┼ÄwÆΦé╡é╜âfâBâîâNâgâèé╔
  18.  
  19.  
  20. WebXpression.x:    WebXpression.o Html2Xpression.o Plain2Xpression.o \
  21.         textview.o put.o micro_console.o draw_mouse.o Image.o History.o \
  22.         GetFile.o  Config.o Date2Date.o \
  23.         WebCache.o FuncUrl.o \
  24.         cut_disp.o hook.o gifl.o compress.o data.o
  25.     $(LD) $^ -o $@ -l $(LIBS)
  26.  
  27. WebXpression.o:        WebXpression.c WebXpression.h WebCache/WebCache.h FuncUrl/FuncUrl.h
  28. Html2Xpression.o:    Html2Xpression.c WebXpression.h Tag.h Entity.h WebCache/WebCache.h FuncUrl/FuncUrl.h
  29. Plain2Xpression.o:    Plain2Xpression.c WebXpression.h Jis2sjis.h
  30. Image.o:        Image.c WebXpression.h WebCache/WebCache.h gifl.h
  31. History.o:        History.c
  32.  
  33. textview.o:        textview.s WebXpression.inc
  34. put.o:            put.s
  35. draw_mouse.o:        draw_mouse.s
  36.  
  37. GetFile.o:        GetFile/GetFile.c WebXpression.h FuncUrl/FuncUrl.h WebCache/WebCache.h
  38.     $(CC) $(CFLAGS) -DWEBXPRESSION -c $<
  39.  
  40. Config.o:        Config.c
  41. Date2Date.o:        Date2Date.c
  42.  
  43. WebCache.o:        WebCache/WebCache.c WebCache/WebCache.h
  44.     $(CC) $(CFLAGS) -DWEBXPRESSION -c $<
  45.  
  46. FuncUrl.o:        FuncUrl/FuncUrl.c FuncUrl/FuncUrl.h
  47.  
  48. cut_disp.o:        cut_disp.s
  49. hook.o:            hook.s
  50. gifl.o:            gifl.s gifl.inc
  51. micro_console.o:    micro_console.s
  52. compress.o:        compress.s
  53. data.o:            data.s WebPage2.CUT WebPage3.CUT
  54.     $(AS) -y $<
  55.  
  56. dist:
  57.     LHA a -t ../$(LZH)
  58.  
  59.